box plot seaborn advance python

24

# Python program to illustrate
# boxplot using inbuilt data-set
# given in seaborn
  
# importing the required module
import seaborn
 
# use to set style of background of plot
seaborn.set(style="whitegrid")
 
# loading data-set
tip = seaborn.load_dataset("tips")
 
seaborn.boxplot(x =tip['total_bill'])

Comments

Submit
0 Comments